home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 261
- Top = 180
- ActiveControl = CalcBtn
- BorderStyle = bsDialog
- Caption = 'PC Plus VAT Calculator'
- ClientHeight = 173
- ClientWidth = 285
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = 'System'
- Font.Style = []
- PixelsPerInch = 96
- TextHeight = 16
- object CalcBtn: TButton
- Left = 8
- Top = 137
- Width = 273
- Height = 33
- Caption = '&Calculate the Grand Total'
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = 'Times New Roman'
- Font.Style = [fsBold]
- ParentFont = False
- TabOrder = 0
- OnClick = CalcBtnClick
- end
- object GroupBox1: TGroupBox
- Left = 8
- Top = 1
- Width = 273
- Height = 129
- Caption = ' Base Calc on...'
- TabOrder = 1
- object Label1: TLabel
- Left = 168
- Top = 56
- Width = 20
- Height = 16
- Caption = 'Vat'
- end
- object SubTotRB: TRadioButton
- Left = 152
- Top = 24
- Width = 89
- Height = 17
- Hint =
- 'Select this to generate a grand total from the cost (ex VAT) in ' +
- 'the first field'
- Caption = 'SubTotal'
- Checked = True
- TabOrder = 0
- TabStop = True
- OnClick = SubTotRBClick
- end
- object GrandTotRB: TRadioButton
- Left = 152
- Top = 88
- Width = 97
- Height = 17
- Caption = 'Grand Total'
- TabOrder = 1
- OnClick = GrandTotRBClick
- end
- object SubTotal: TEdit
- Left = 16
- Top = 24
- Width = 121
- Height = 24
- TabOrder = 2
- end
- object Vat: TEdit
- Left = 16
- Top = 56
- Width = 121
- Height = 24
- ReadOnly = True
- TabOrder = 3
- end
- object GrandTotal: TEdit
- Left = 16
- Top = 88
- Width = 121
- Height = 24
- Hint =
- 'Select this to generate a subtotal from the cost (inc VAT) in th' +
- 'e last field'
- TabOrder = 4
- end
- end
- end
-